home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / doors_2 / sfcb12.zip / SFCB.ZIP / SORTXCH.BAT < prev    next >
DOS Batch File  |  1992-03-09  |  492b  |  19 lines

  1. @Echo off
  2. Echo off
  3. Echo ╒═════════════════════════════════════════════════════╕
  4. Echo │        Sorting SFCB 1.2 Exchange file  ...          │
  5. Echo ╘═════════════════════════════════════════════════════╛
  6. if not exist sfcb.xch goto NotThere
  7. sort < sfcb.xch > sfcb.$$$
  8. if not exist sfcb.$$$ goto SortError
  9. del sfcb.xch
  10. ren sfcb.$$$ sfcb.xch
  11. Echo Finished sort.
  12. Goto quit
  13. :NotThere
  14. Echo Could not find file SFCB.XCH to sort!
  15. goto Quit
  16. :SortError
  17. Echo Error during sorting!
  18. :Quit
  19.